home *** CD-ROM | disk | FTP | other *** search
- /*************************************************************************************************
- *
- *
- * MacZoop - "the framework for the rest of us"
- *
- *
- *
- * ZErrors.h -- utils for throwing exceptions
- *
- *
- *
- *
- *
- * © 1996, Graham Cox
- *
- *
- *
- *
- *************************************************************************************************/
-
-
- #pragma once
-
- #ifndef __ZERRORS__
- #define __ZERRORS__
-
-
- void FailNIL( void* aPtr );
- void FailOSErr( OSErr theErr );
- void Fail();
- void FailNILRes( void* aResPtr );
- void FailSilent();
- void FailParamErr( OSErr theErr );
- void FailNILParam( void* aPtr );
- void FailMemError();
- void FailResError();
- void FailNILErr( void* aPtr, OSErr err );
-
-
- #endif